home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / FLASHPC.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1993-03-25  |  260 b   |  13 lines

  1. #options=
  2. options= /Zi /Od
  3. compiler= cl /c /AL /Gt512
  4. wlevel= /W3
  5.  
  6.  
  7. test.exe       : test.obj
  8.                  link /CO /ST:8192 @test.lnk
  9.                  del *.bak
  10.  
  11. test.obj       : test.c
  12.                  $(compiler) $(wlevel) $(options) test.c
  13.